1#[repr(C)] 2#[derive(Debug, Clone, Copy, PartialEq)] 3pub struct NiQuaternion { 4 pub w: f32, // 0x0 5 pub x: f32, // 0x4 6 pub y: f32, // 0x8 7 pub z: f32, // 0xC 8} 9const _: () = assert!(core::mem::size_of::<NiQuaternion>() == 0x10);